home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-11.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Thing_4" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include "stones.inc"
- #include "metals.inc"
-
- camera { location < 0, 6, -12 > look_at < 0, 0, 0 > }
- light_source { < 0, 10, -10 > color rgb < 2, 2, 2 > }
- background { White }
- #declare R1 = seed(0)
-
- //------------------------------------------------------------------->
- //
- // Get it and show it.
-
- #include "thing-4.inc"
- object { Thing_4 }
-
- //------------------------------------------------------------------->
- //
- // Make sure it fits in the pan.
-
- #include "bake-pan.inc"
- object { Baking_Pan }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-